runtime.heapStatsDelta.smallFreeCount (field)

8 uses

	runtime (current package)
		metrics.go#L254: 				for i, count := range in.heapStats.smallFreeCount[1:] {
		metrics.go#L615: 		nf := a.smallFreeCount[i]
		mgcsweep.go#L773: 			atomic.Xadd64(&stats.smallFreeCount[spc.sizeclass()], int64(nfreed))
		mstats.go#L418: 		f := consStats.smallFreeCount[i]
		mstats.go#L688: 	smallFreeCount  [gc.NumSizeClasses]uint64 // number of frees for small objects (<=maxSmallSize)
		mstats.go#L711: 	for i := range b.smallFreeCount {
		mstats.go#L712: 		a.smallFreeCount[i] += b.smallFreeCount[i]